home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_13_05 / allison / date2.h < prev    next >
C/C++ Source or Header  |  1995-03-12  |  272b  |  12 lines

  1. LISTING 4 - A safer Date type
  2. /* date2.h */
  3.  
  4. /* Declare the incomplete Date type */
  5. typedef struct Date Date;
  6.  
  7. Date *date_create(int, int, int);
  8. char *date_format(const Date *, char *);
  9. int date_compare(const Date *, const Date *);
  10. void date_destroy(Date *);
  11.  
  12.